home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Web Server / PHP.EXE / pear / DB / tests / simplequery.inc < prev    next >
Encoding:
Text File  |  2000-12-07  |  135 b   |  8 lines

  1. <?php
  2.  
  3. $dbh->setErrorHandling(PEAR_ERROR_DIE);
  4. $sth = $dbh->simpleQuery("SELECT * FROM phptest");
  5. print gettype($sth)."\n";
  6.  
  7. ?>
  8.